home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 34 / Amiga Format CD34 (1998-11-20)(Future Publishing)(GB)[!][Christmas issue].iso / -screenplay- / hd_installers / aquaticgames / install-aquaticgames < prev    next >
Text File  |  1998-10-01  |  1KB  |  63 lines

  1. (set #CI_UNIT 0)
  2. (set #CI_DRIVE ("DF%ld:" #CI_UNIT))
  3.  
  4. ;----------------------------
  5.  
  6. ;try to figure out a place where the user usually installs his games
  7. (if (exists "Games:" (noreq) )
  8.     (set @default-dest "Games:")
  9.     (if (exists "SYS:Games" (noreq) )
  10.         (set @default-dest "SYS:Games")
  11.         (if (exists "Work:Games" (noreq) )
  12.             (set @default-dest "Work:Games")
  13.             (if (exists "JEUX:" (noreq) )
  14.                (set @default-dest "JEUX:")
  15.                (set @default-dest "SYS:")
  16.             )
  17.         )
  18.     )
  19. )
  20.  
  21.  
  22. (set @default-dest
  23. (askdir
  24.     (prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  25.     (help @askdir-help)
  26.     (default @default-dest)
  27.     (disk)
  28. )
  29. )
  30.  
  31. (set #dest (tackon @default-dest @app-name))
  32.  
  33. (makedir #dest
  34.     (help @makedir-help)
  35.     (infos)
  36. )
  37.  
  38. ;----------------------------
  39.  
  40. (copyfiles
  41.     (help @copyfiles-help)
  42.     (source "AquaticGamesHD")
  43.     (dest #dest)
  44.     (infos)
  45. )
  46.  
  47. (copyfiles
  48.     (help @copyfiles-help)
  49.     (source "AquaticGamesHD.readme")
  50.     (dest #dest)
  51.     (infos)
  52. )
  53.  
  54. (message ("\nInsert AquaticGames into drive %ld !" #CI_UNIT))
  55.     (if
  56.         (= 0 (run ("DiskRipper -e Aquatic.slave %s \"%s/AquaticGames.d1\" >CON:///1000//CLOSE/WAIT" #CI_DRIVE #dest)))
  57.         ("")
  58.         (abort "\"DiskRipper\" must be in your PATH !")
  59.     )
  60.  
  61. (exit)
  62.  
  63.